golang.org/x/net/http2.clientStream.bufPipe (field)

10 uses

	golang.org/x/net/http2 (current package)
		transport.go#L293: 	bufPipe       pipe // buffered pipe with the flow-controlled response payload
		transport.go#L1359: 		cs.bufPipe.CloseWithError(err) // no-op if already closed
		transport.go#L1364: 		cs.bufPipe.CloseWithError(errRequestCanceled)
		transport.go#L2125: 	cs.bufPipe.setBuffer(&dataBuffer{expected: res.ContentLength})
		transport.go#L2180: 	n, err = b.cs.bufPipe.Read(p)
		transport.go#L2231: 	cs.bufPipe.BreakWithError(errClosedResponseBody)
		transport.go#L2234: 	unread := cs.bufPipe.Len()
		transport.go#L2342: 			if _, err = cs.bufPipe.Write(data); err != nil {
		transport.go#L2392: 		cs.bufPipe.closeWithErrorAndCode(io.EOF, cs.copyTrailers)
		transport.go#L2603: 	cs.bufPipe.CloseWithError(serr)